+2008-03-12 Jens Granseuer <jensgr@gmx.net>
+
+ * modules/printbackends/cups/gtkprintbackendcups.c:
+ (cups_printer_prepare_for_print): Don't define variables in the
+ middle of a block. (#522067)
+
2008-03-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprintunixdialog.c: Add an overwrite confirmation
{
char width[G_ASCII_DTOSTR_BUF_SIZE];
char height[G_ASCII_DTOSTR_BUF_SIZE];
+ char *custom_name;
g_ascii_formatd (width, sizeof (width), "%.2f", gtk_paper_size_get_width (paper_size, GTK_UNIT_POINTS));
g_ascii_formatd (height, sizeof (height), "%.2f", gtk_paper_size_get_height (paper_size, GTK_UNIT_POINTS));
- char *custom_name = g_strdup_printf (("Custom.%sx%s"), width, height);
+ custom_name = g_strdup_printf (("Custom.%sx%s"), width, height);
gtk_print_settings_set (settings, "cups-PageSize", custom_name);
g_free (custom_name);
}